home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / GNU_KIT / DISK8.ZIP / src / makest / changes < prev    next >
Encoding:
Text File  |  1991-08-08  |  9.0 KB  |  276 lines

  1. User-visible changes in GNU Make, excluding bug fixes, since version 3.05:
  2. ==========================================================================
  3.  
  4. Version 3.60
  5.  
  6. * A message is always printed when Make decides there is nothing to be done.
  7.   It used to be that no message was printed for top-level phony targets
  8.   (because "`phony' is up to date" isn't quite right).  Now a different
  9.   message "Nothing to be done for `phony'" is printed in that case.
  10.  
  11. * Archives on AIX now supposedly work.
  12.  
  13. * When the commands specified for .DEFAULT are used to update a target,
  14.   the $< automatic variable is given the same value as $@ for that target.
  15.   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
  16.  
  17. Version 3.59
  18.  
  19. * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
  20.   variables while remaking makefiles, so recursive makes done while remaking
  21.   makefiles will behave properly.
  22.  
  23. * If the special target `.NOEXPORT' is specified in a makefile,
  24.   only variables that came from the environment and variables
  25.   defined on the command line are exported.
  26.  
  27. Version 3.58
  28.  
  29. * Suffix rules may have dependencies (which are ignored).
  30.  
  31. Version 3.57
  32.  
  33. * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
  34.   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
  35.  
  36. Version 3.55
  37.  
  38. * There is now a Unix man page for GNU Make.  It is certainly not a replacement
  39. for the Texinfo manual, but it documents the basic functionality and the
  40. switches.  For full documentation, you should still read the Texinfo manual.
  41. Thanks to Dennis Morse of Stanford University for contributing the initial
  42. version of this.
  43.  
  44. * Variables which are defined by default (e.g., `CC') will no longer be put
  45. into the environment for child processes.  (If these variables are reset by the
  46. environment, makefiles, or the command line, they will still go into the
  47. environment.)
  48.  
  49. * Makefiles which have commands but no dependencies (and thus are always
  50.   considered out of date and in need of remaking), will not be remade (if they
  51.   were being remade only because they were makefiles).  This means that GNU
  52.   Make will no longer go into an infinite loop when fed the makefiles that
  53.   `imake' (necessary to build X Windows) produces.
  54.  
  55. * There is no longer a warning for using the `vpath' directive with an explicit
  56. pathname (instead of a `%' pattern).
  57.  
  58. Version 3.51
  59.  
  60. * When removing intermediate files, only one `rm' command line is printed,
  61. listing all file names.
  62.  
  63. * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
  64. These are the directory-only and file-only versions of `$^' and `$?'.
  65.  
  66. * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
  67. directory if it exists.
  68.  
  69. * The automatic variable `$($/)' is no longer defined.
  70.  
  71. * Leading `+' characters on a command line make that line be executed even
  72. under -n, -t, or -q (as if the line contained `$(MAKE)').
  73.  
  74. * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
  75. only those lines are executed, not their entire rules.
  76. (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
  77.  
  78. Version 3.50
  79.  
  80. * Filenames in rules will now have ~ and ~USER expanded.
  81.  
  82. * The `-p' output has been changed so it can be used as a makefile.
  83. (All information that isn't specified by makefiles is prefaced with comment
  84. characters.)
  85.  
  86. Version 3.49
  87.  
  88. * The % character can be quoted with backslash in implicit pattern rules,
  89. static pattern rules, `vpath' directives, and `patsubst', `filter', and
  90. `filter-out' functions.  A warning is issued if a `vpath' directive's
  91. pattern contains no %.
  92.  
  93. * The `wildcard' variable expansion function now expands ~ and ~USER.
  94.  
  95. * Messages indicating failed commands now contain the target name:
  96.     make: *** [target] Error 1
  97.  
  98. * The `-p' output format has been changed somewhat to look more like
  99. makefile rules and to give all information that Make has about files.
  100.  
  101. Version 3.48
  102.  
  103. Version 3.47
  104.  
  105. * The `-l' switch with no argument removes any previous load-average limit.
  106.  
  107. * When the `-w' switch is in effect, and Make has updated makefiles,
  108. it will write a `Leaving directory' messagfe before re-executing itself.
  109. This makes the `directory change tracking' changes to Emacs's compilation
  110. commands work properly.
  111.  
  112. Version 3.46
  113.  
  114. * The automatic variable `$*' is now defined for explicit rules,
  115. as it is in Unix make.
  116.  
  117. Version 3.45
  118.  
  119. * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
  120. specified without an argument (indicating infinite jobs).
  121. The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
  122.  
  123. * Make no longer checks hashed directories after running commands.
  124. The behavior implemented in 3.41 caused too much slowdown.
  125.  
  126. Version 3.44
  127.  
  128. * A dependency is NOT considered newer than its dependent if
  129. they have the same modification time.  The behavior implemented
  130. in 3.43 conflicts with RCS.
  131.  
  132. Version 3.43
  133.  
  134. * Dependency loops are no longer fatal errors.
  135.  
  136. * A dependency is considered newer than its dependent if
  137. they have the same modification time.
  138.  
  139. Version 3.42
  140.  
  141. * The variables F77 and F77FLAGS are now set by default to $(FC) and
  142. $(FFLAGS).  Makefiles designed for System V make may use these variables in
  143. explicit rules and expect them to be set.  Unfortunately, there is no way to
  144. make setting these affect the Fortran implicit rules unless FC and FFLAGS
  145. are not used (and these are used by BSD make).
  146.  
  147. Version 3.41
  148.  
  149. * Make now checks to see if its hashed directories are changed by commands.
  150. Other makes that hash directories (Sun, 4.3 BSD) don't do this.
  151.  
  152. Version 3.39
  153.  
  154. * The `shell' function no longer captures standard error output.
  155.  
  156. Version 3.32
  157.  
  158. * A file beginning with a dot can be the default target if it also contains
  159. a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
  160.  
  161. Version 3.31
  162.  
  163. * Archive member names are truncated to 15 characters.
  164.  
  165. * Yet more USG stuff.
  166.  
  167. * Minimal support for Microport System V (a 16-bit machine and a
  168. brain-damaged compiler).  This has even lower priority than other USG
  169. support, so if it gets beyond trivial, I will take it out completely.
  170.  
  171. * Revamped default implicit rules (not much visible change).
  172.  
  173. * The -d and -p options can come from the environment.
  174.  
  175. Version 3.30
  176.  
  177. * Improved support for USG and HPUX (hopefully).
  178.  
  179. * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
  180. equivalent to `$(patsubst a,b,$(foo))'.
  181.  
  182. * Defining .DEFAULT with no deps or commands clears its commands.
  183.  
  184. * New default implicit rules for .S (cpp, then as), and .sh (copy and make
  185. executable).  All default implicit rules that use cpp (even indirectly), use
  186. $(CPPFLAGS).
  187.  
  188. Version 3.29
  189.  
  190. * Giving the -j option with no arguments gives you infinite jobs.
  191.  
  192. Version 3.28
  193.  
  194. * New option: "-l LOAD" says not to start any new jobs while others are
  195. running if the load average is not below LOAD (a floating-point number).
  196.  
  197. * There is support in place for implementations of remote command execution
  198. in Make.  See the file remote.c.
  199.  
  200. Version 3.26
  201.  
  202. * No more than 10 directories will be kept open at once.
  203. (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
  204.  
  205. Version 3.25
  206.  
  207. * Archive files will have their modification times recorded before doing
  208. anything that might change their modification times by updating an archive
  209. member.
  210.  
  211. Version 3.20
  212.  
  213. * The `MAKELEVEL' variable is defined for use by makefiles.
  214.  
  215. Version 3.19
  216.  
  217. * The recursion level indications in error messages are much shorter than
  218. they were in version 3.14.
  219.  
  220. Version 3.18
  221.  
  222. * Leading spaces before directives are ignored (as documented).
  223.  
  224. * Included makefiles can determine the default goal target.
  225. (System V Make does it this way, so we are being compatible).
  226.  
  227. Version 3.14.
  228.  
  229. * Variables that are defaults built into Make will not be put in the
  230. environment for children.  This just saves some environment space and,
  231. except under -e, will be transparent to sub-makes.
  232.  
  233. * Error messages from sub-makes will indicate the level of recursion.
  234.  
  235. * Hopefully some speed-up for large directories due to a change in the
  236. directory hashing scheme.
  237.  
  238. * One child will always get a standard input that is usable.
  239.  
  240. * Default makefiles that don't exist will be remade and read in.
  241.  
  242. Version 3.13.
  243.  
  244. * Count parentheses inside expansion function calls so you can
  245. have nested calls: `$(sort $(foreach x,a b,$(x)))'.
  246.  
  247. Version 3.12.
  248.  
  249. * Several bug fixes, including USG and Sun386i support.
  250.  
  251. * `shell' function to expand shell commands a la `
  252.  
  253. * If the `-d' flag is given, version information will be printed.
  254.  
  255. * The `-c' option has been renamed to `-C' for compatibility with tar.
  256.  
  257. * The `-p' option no longer inhibits other normal operation.
  258.  
  259. * Makefiles will be updated and re-read if necessary.
  260.  
  261. * Can now run several commands at once (parallelism), -j option.
  262.  
  263. * Error messages will contain the level of Make recursion, if any.
  264.  
  265. * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
  266. makefiles are read.
  267.  
  268. * A double-colon rule with no dependencies will always have its commands run.
  269. (This is how both the BSD and System V versions Make do it.)
  270.  
  271. Version 3.05
  272.  
  273. Local Variables:
  274. version-control: never
  275. End:
  276.